home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / UTIL / Alpha 6.5.sit / Tcl / UserCode / Text Filters / Text Munging / shuffle < prev    next >
Text File  |  1994-02-11  |  230b  |  7 lines

  1. #!/usr/bin/perl
  2. srand;                      # Randomize the rand function.
  3. @lines = <>;                # Read in all the lines.
  4. while (@lines) {            # While more than 0 elements.
  5.     print splice(@lines, rand @lines, 1);
  6. }
  7.